home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Win 1995 November
/
CD [TECH_B].bin
/
tech_b
/
delphi
/
trial
/
disk11
/
qjoin.pak
/
MAIN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-08-08
|
303 b
|
23 lines
unit Main;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, DB, DBGrids,
DBTables, Grids;
type
TForm1 = class(TForm)
Query1: TQuery;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.